51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#Android P
Android下拉刷新SwipeRefreshLayout和列表RecyclerView滑动冲突的解决方法
privateSwipeRefreshLayoutmRefreshLayout;privateRecyclerViewmRecyclerView;mRecyclerView.addOnScrollListener(newRecyclerView.OnScrollListener(){@Overridepublicvoi...
代码星球
·
2021-02-20
Android
下拉
刷新
SwipeRefreshLayout
列表
Android独立于Activity或者Fragment的LoadingDialog的实现
publicclassLoadDialogMgr{privatestaticfinalStringLOAD_TIP_DIALOG_TAG="LoadTipDialog";privatestaticLoadDialogMgrsMLoadDialogMgr;privateLoadDialogMgr(){}publicsta...
代码星球
·
2021-02-20
Android
立于
Activity
或者
Fragment
android常用设计模式的理解
第一天:1.单例模式singleton:依赖关系 定义:确保某一个类只有一个实例,而且自行实例化并向整个系统提供这个实例。 原理:将构造函数私有化,并且通过静态方法获取一个唯一的实例。 参考:LayoutInflater类,通过map缓存单例,单例实现方式之一。2.构建者模式builder:聚合关系 定义:将一...
代码星球
·
2021-02-20
android
常用
设计模式
理解
android使用android:ellipsize="end"无效的解决方法
当需要只显示当行,超出的部分使用省略号,可以使用android:singleLine="true",但是singleLine属性已经被标为不推荐使用了,可以使用android:ellipsize属性同样可以实现。具体如下: android:ellipsize="end" android:lines="1" and...
代码星球
·
2021-02-20
android
使用
ellipsize
quotend
quot
android使用DialogFragment出现java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState的解决方法
调用dialog.show(getSupportFragmentManager(),"tag");时出现了java.lang.IllegalStateException:CannotperformthisactionafteronSaveInstanceState的错误。报错的原因:dialog.show()方法的内部...
代码星球
·
2021-02-20
android
使用
DialogFragment
出现
java.lang.IllegalStateException
android控件ViewPager动态添加删除一条数据
privateList<String>mPathList;privateFragmentStatePagerAdaptermPagerAdapter;//1.使用FragmentStatePagerAdaptermPagerAdapter=newFragmentStatePagerAdapter(getSu...
代码星球
·
2021-02-20
android
控件
ViewPager
动态
添加
android双向数据绑定data-binding使用include时的使用方法
//activity_main.xml添加layout根布局,添加bind域名空间<layoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"...
代码星球
·
2021-02-20
android
双向
数据
绑定
data-binding
Android的对话框DialogFragment指定弹窗口大小,设置圆角
@OverridepublicViewonCreateView(@NonNullLayoutInflaterinflater,@NullableViewGroupcontainer,@NullableBundlesavedInstanceState){getDialog().getWindow().setBackgro...
代码星球
·
2021-02-20
Android
对话框
DialogFragment
指定
窗口
Android 从下往上弹出 DialogFragment 的关键代码
//java代码:publicclassCountrySelectDialogextendsAppCompatDialogFragment{publicstaticCountrySelectDialognewInstance(){Bundleargs=newBundle();CountrySelectDialogfra...
代码星球
·
2021-02-20
Android
从下
往上
弹出
DialogFragment
Android DialogFragment 遇到 java.lang.IllegalStateException: Fragment already added: 的解决方法
使用AppCompatDialogFragment或者DialogFragment的过程中遇到java.lang.IllegalStateException:Fragmentalreadyadded:的解决方法:privateCountryChooseDialogmCountryChooseDialog;private...
代码星球
·
2021-02-20
Android
DialogFragment
遇到
java.lang.IllegalStateException
Fragment
Android双向数据绑定DataBinding提示找不到自定义的setXXX方法的解决方法
Android双向数据绑定DataBinding没有自动生成setXXX的方法的原因可能如下: 1.布局文件需要以<layout></layout>标签作为根标签,DataBind才能自动生成对应的方法 2.布局文件不能有语法错误,否则编译都不过肯定不会生成的 3.mBinding成员变量...
代码星球
·
2021-02-20
方法
Android
双向
数据
绑定
Android设置ToolBar的title文字居中显示
privatevoidsetToolBarCenterTitle(){TextViewtitleTv=newTextView(this);titleTv.setTextColor(ContextCompat.getColor(this,R.color.black));titleTv.setText("Title居中显示...
代码星球
·
2021-02-20
Android
设置
ToolBar
title
文字
Android控件ImageView的scaleType图解
...
代码星球
·
2021-02-20
Android
控件
ImageView
scaleType
图解
android多个EditText指定下一个EditText获取焦点的方法
在前一个EditText里添加如下内容:android:imeOptions="actionNext"android:nextFocusRight="@+id/et_next_input"...
代码星球
·
2021-02-20
EditText
android
多个
指定
下一个
debian/unbuntu下安装配置android开发环境
第一步:下载配置jdk 1.下载jdk: 最新jdk下载路径为 https://www.oracle.com/technetwork/java/javase/downloads/index.html jdk8的下载路径为:https://www.oracle.com/technetwor...
代码星球
·
2021-02-20
debian
unbuntu
安装
配置
android
首页
上一页
...
7
8
9
10
11
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他